home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / dnet / dshterm1_0.lha / lib / st / extrafile.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-04  |  395 b   |  12 lines

  1. #include <exec/types.h>
  2. #include <proto/dos.h>
  3.  
  4. /*********************************************************/
  5.             void SafeClose(BPTR *file)
  6. /*********************************************************
  7.    Close a file safely (check whether NULL or not)
  8.      Update variable passed by making NULL
  9. **********************************************************/
  10. { if(*file) Close(*file);  *file = NULL; }
  11.  
  12.